@charset "UTF-8";
/* CSS Document */

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #262626;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

address {
    font-style: normal;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html {
    font-size: 16px;
}

body {
    /*ゴシック*/
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: sub;
}

/*共通の設定
------------------------------------------------*/
.pc {
    display: block;

}

.sp {
    display: none !important;
}



@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/*メインカラーの設定
-------------------------------------------------*/
:root {
    --txt-black: #262626;
    --main-blue: #00497C;
    --back-blue: #EDF7FA;
}

/*header
-------------------------------------------------*/
header .headerWrap {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.headerWrap h1 {
    max-width: 370px;
    margin-left: 15px;
}

.headerWrap nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.headerWrap nav .hd_menu {
    display: flex;
    justify-content: flex-end;
}

.headerWrap nav .hd_menu li a {
    font-weight: 500;
    margin-left: 20px;
    font-weight: 500;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.headerWrap nav .hd_menu li a span {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
}

.headerWrap nav .hd_menu {
    margin-right: 30px;
}

.headerWrap nav .hd_tel {
    margin-right: 15px;
}

.headerWrap nav .hd_contact a {
    display: block;
    text-align: center;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-blue);
    padding: 24px 50px;
    height: 100px;
    max-width: 200px;
    padding-left: 45px;
    padding-right: 45px;
}
.headerWrap nav .hd_contact a span {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
}

.headerWrap nav .hd_tel a {
    color: var(--main-blue);
    font-size: 25px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
}

header .mv {
    background-image: url(../images/top1.png);
    background-size: cover;
    height: 100vh;
}

.mv .mv_pc .mv_txt {
    margin-left: 100px;
    padding-top: 200px;
    max-width: 28%;
}

.top_sec01 {
    padding-top: 90px;
    padding-bottom: 30px;
    background-color: var(--back-blue);
}

.top_sec01 .top_sec01_wrap .heading_title {
    max-width: 1100px;
    margin: 0 auto;
}

.heading_title h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
}

@media only screen and (max-width: 750px) {
header .headerWrap {
    background-color: #fff;
    height: fit-content;
    display: block;
}

.headerWrap h1 {
    max-width: 300px;
    margin-left: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.headerWrap nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.headerWrap nav .hd_menu_sp {
    height: 40px;
    width: 100%;
    margin: 0 auto;
    background-color: #F7F7F7;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.headerWrap nav .hd_menu_sp li {
}

.headerWrap nav .hd_menu_sp li a {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 17px;
}

header .mv {
    background-image: url(../images/top1_sp.png);
    background-size: cover;
    height: 100vh;
}

.mv .mv_pc .mv_txt {
    margin-left: 30px;
    padding-top: 80%;
    max-width: 90%;
}

.top_sec01 {
    padding-top: 60px;
    padding-bottom: 30px;
}

.top_sec01 .top_sec01_wrap .heading_title {
    max-width: 94%;
    margin: 0 auto;
}

}


.top_sec01_wrap .pickup_inner {
    margin-top: 50px;
}

.pickup_inner .pickup_list li {
    max-width: 1100px;
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 330px;
  position: relative;
  z-index: 1;
  overflow: visible;
  background-color: #fff; /* ここは中央用 */
}

.pickup_list_spR::after {
  content: "";
  position: absolute;
  top: 0;
  right: -9999px; /* 画面いっぱいに */
  bottom: 0;
  left: 100%;
  background-color: #fff;
  z-index: -1;
}

.pickup_list_spL::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9999px;
  bottom: 0;
  right: 100%;
  background-color: #fff;
  z-index: -1;
}

.pickup_inner .pickup_list li .pickup_imgArea {
    width: 500px;
}

.pickup_inner .pickup_list li .pickup_txtArea h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 18px;
}

.pickup_inner .pickup_list li .pickup_txtArea p {
    margin-bottom: 18px;
}

.pickup_inner .pickup_list li .pickup_txtArea .pickup_linkBtn a {
    display: block;
    max-width: 290px;
    background-color: var(--main-blue);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 8px 0;
}


@media only screen and (max-width: 750px) {
.top_sec01_wrap .pickup_inner {
    margin-top: 30px;
}

.pickup_inner .pickup_list {

}

.pickup_inner .pickup_list li {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start; /* ←デフォ左寄せに */
    margin-bottom: 60px;
    height: fit-content;
  }

.pickup_txtArea {
    margin-top: 15px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.pickup_imgArea {
    padding-left: 20px;
}

  /* 左寄せ（spL）用 */
  .pickup_list_spL {
    align-items: flex-start;

  }

  /* 右寄せ（spR）用 */
  .pickup_list_spR {
    align-items: flex-end;
  }

 .pickup_list_spR::after,
  .pickup_list_spL::before {
    display: none;
  }

.pickup_inner .pickup_list li .pickup_imgArea {
    width: 100%;
}

.pickup_inner .pickup_list li .pickup_imgArea img {
    max-width: 90%;
}



}

.top_sec02 {
    padding-top: 90px;
    padding-bottom: 70px;
}

.top_sec02 .top_sec02_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.top_sec02_wrap .headingWrap {
    display: flex;
    flex-wrap: wrap;
}

.top_sec02_wrap .headingWrap .heading_title {
    margin-right: 50px;
}

.top_sec02_wrap .headingWrap .jisseki_link a {
    display: block;
    padding: 6px 80px;
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
    margin-top: 8px;
}

.top_sec02_wrap .works_inner {
    margin-top: 50px;
}

.top_sec02_wrap .works_inner dl {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_sec02_wrap .works_inner dl div {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: relative;
}

.top_sec02_wrap .works_inner dl div dd p {
    font-size: 15px;
    height: 90px;
}

.top_sec02_wrap .works_inner dl div dd .works_linkBtn {

}

.top_sec02_wrap .works_inner dl div dd .works_linkBtn a {
    text-align: center;
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    width: 230px;
    height: 46px;
    background-color: var(--main-blue);
    color: #fff;
    line-height: 46px;
    position: absolute;
    bottom: -50px;
    right: 0;
}

.top_sec02_wrap .works_inner dl div dd .creema_linkBtn {
}

.top_sec02_wrap .works_inner dl div dd .creema_linkBtn a {
    text-align: center;
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    width: 230px;
    height: 46px;
    background-color: #fff;
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
    line-height: 46px;
    position: absolute;
    bottom: -60px;
    right: 0;
}

.top_sec03 {
    margin-top: 50px;
    background-color: var(--main-blue);
    padding-top: 70px;
    padding-bottom: 50px;
}

.top_sec03 .top_sec03_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.top_sec03_wrap .headingWrap {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.top_sec03_wrap .headingWrap .heading_note {
    max-width: 500px;
    margin-left: 50px;
}

.top_sec03_wrap .headingWrap .heading_note p {
    font-size: 14px;
}

.top_sec03_wrap .headingWrap .heading_note .business_linkBtn a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    width: 260px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    margin-top: 20px;
}

.top_sec03_wrap .business_inner {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
}

.top_sec03_wrap .business_inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_sec03_wrap .business_inner ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.top_sec03_wrap .business_inner ul li .business_imgArea {
    max-width: 250px;
}

.top_sec03_wrap .business_inner ul li .business_txtArea {
    margin-left: 15px;
    max-width: 250px;
    padding-top: 5px;
}

.top_sec03_wrap .business_inner ul li .business_txtArea h4 {
    color: #fff;
}

.top_sec03_wrap .business_inner ul li .business_txtArea p {
    font-size: 13.5px;
    color: #fff;
    margin-top: 13px;
    line-height: 1.4;
    height: 165px;

}

.top_sec03_wrap .business_inner ul li .business_txtArea .product_linkBtn a {
    display: block;
    max-width: 230px;
    height: 40px;
    background-color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    color: var(--main-blue);
    text-align: center;
    line-height: 40px;
}

@media only screen and (max-width: 750px) {

.top_sec02_wrap .headingWrap {
    padding-left: 20px;
}

    .top_sec03 .top_sec03_wrap {
    max-width: 90%;
    margin: 0 auto;
}

.top_sec03_wrap .headingWrap .heading_note {
    margin-left: 0px;
}

.top_sec03_wrap .headingWrap .heading_note p {
    margin-top: 20px;
    line-height: 1.7;
}

.top_sec03_wrap .headingWrap .heading_note .business_linkBtn a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    width: 260px;
    margin: 0 auto;
    height: 46px;
    line-height: 46px;
    text-align: center;
    margin-top: 20px;
}

.top_sec03_wrap .business_inner ul {
    justify-content: center;
}

.top_sec03_wrap .business_inner ul li {
    justify-content: center;
    margin-bottom: 50px;
}

.top_sec03_wrap .business_inner ul li .business_imgArea {
    max-width: 350px;
}

.top_sec03_wrap .business_inner ul li .business_imgArea img {
    width: 350px;
}



.top_sec03_wrap .business_inner ul li .business_txtArea {
    margin-left: 0px;
    max-width: 350px;
    padding-top: 5px;
}

.top_sec03_wrap .business_inner ul li .business_txtArea h4 {
    font-size: 17px;
}

.top_sec03_wrap .business_inner ul li .business_txtArea p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    height: fit-content;
    margin-top: 8px;
    margin-bottom: 15px;
}
}


.top_sec04 .top_sec04_wrap {
    width: 100vw;
  margin-left: calc(50% - 50vw); /* 横中央にずらすためのマージン調整 */
  display: flex;
  height: 430px;
}

.top_sec04 .top_sec04_wrap .sec_link_company,
.top_sec04 .top_sec04_wrap .sec_link_contact {
    width: 50%;
  height: 100%; /* 親の430pxに合わせる */
  box-sizing: border-box;
  padding: 40px; /* お好みで余白調整 */
}

.top_sec04 .top_sec04_wrap .sec_link_company {
    background-image: url(../images/top_company_back.png);
    background-size: cover;
}

.top_sec04 .top_sec04_wrap .sec_link_contact {
    background-image: url(../images/top_contact_back.png);
    background-size: cover;
}

.top_sec04 .top_sec04_wrap .sec_link_company .com_linkBtn a {
    display: block;
    max-width: 230px;
    background-color: var(--main-blue);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 8px 0;
    margin-top: 40px;
}

.top_sec04 .top_sec04_wrap .sec_link_company .calender_linkBtn a {
    display: block;
    max-width: 230px;
    border: 1px solid var(--main-blue);
    background-color: #fff;
    color: var(--main-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    margin-top: 20px;
}

.top_sec04 .top_sec04_wrap .sec_link_contact .phonenmb_linkBtn a {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--main-blue);
    letter-spacing: 1.1px;
    margin-top: 20px;
    line-height: 1;
}

.top_sec04 .top_sec04_wrap .sec_link_contact .form_linkBtn a {
    display: block;
    max-width: 280px;
    background-color: var(--main-blue);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    margin-top: 20px;
}

@media only screen and (max-width: 750px) {
    .top_sec04 .top_sec04_wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: block;
    height: fit-content;
}

.top_sec04 .top_sec04_wrap .sec_link_company,
.top_sec04 .top_sec04_wrap .sec_link_contact {
    width: 100%;
    height: 350px;
    box-sizing: border-box;
    padding: 40px;
}
}

.top_sec05_wrap {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* 横いっぱいに広げつつ中央揃え */
  box-sizing: border-box;
}

.top_sec05_wrap .headingArea {
  width: 30%;
  background-color: var(--back-blue);
  padding: 40px; /* お好みで調整 */
  box-sizing: border-box;
  display: flex;
  justify-content: center; /* 横中央揃えしたい場合 */
}

.top_sec05_wrap .top_sec05_inner {
  width: 70%;
  padding: 40px;
  box-sizing: border-box;
}

@media only screen and (max-width: 750px){
    .top_sec05_wrap {
    display: block;
    background-color: var(--back-blue);
    width: 100vw;
    margin-left: 0;
    box-sizing: border-box;
}

.top_sec05_wrap .headingArea {
    width: 100%;
    background-color: var(--back-blue);
    padding: 20px;
    box-sizing: border-box;
    display: block;
}

.top_sec05_wrap .top_sec05_inner {
    background-color: #fff;
    width: 93%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.top_sec05_wrap .top_sec05_inner .topics_list div {
    border-bottom: 1px solid var(--txt-black);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
}

.top_sec06 {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* 画面全体に広げて中央揃え */
  height: 430px; /* 地図の高さに合わせる */
  box-sizing: border-box;
}

.top_sec06 .mapArea {
  width: 70%;
  height: 100%;
}

.top_sec06 .mapArea iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.top_sec06 .headingArea {
  width: 30%;
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央揃え */
  align-items: center;     /* 横中央揃え（お好みで） */
  background-color: var(--back-blue); /* 見やすいように背景つけても◎ */
}

@media only screen and (max-width: 750px){
    .top_sec06 {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    margin-left: 0;
    height: fit-content;
    box-sizing: border-box;
    flex-direction: column-reverse;
}

.top_sec06 .headingArea {
    width: 100vw;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--back-blue);
}

.top_sec06 .mapArea {
    width: 100vw;
    height: 100%;
}

.top_sec06 .mapArea iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}
}

.sec_sns {
    padding: 50px 0;
}

.sec_sns .sec_sns_wrap {
    max-width: 360px;
    margin: 0 auto;
}

.sec_sns .sec_sns_wrap ul {
    display: flex;
    text-align: center;
    justify-content: space-around;
}

footer {
    background-color: var(--main-blue);
    padding-top: 70px;
    padding-bottom: 100px;
}

footer .footer_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

footer .footer_wrap .ft_heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer .footer_wrap .ft_heading h1 {
    margin-right: 50px;
}

footer .footer_wrap .ft_heading h1 img {
    max-width: 300px;
}

footer .footer_wrap .ft_heading .asahi_logo img {
    max-width: 260px;
}

footer .footer_wrap .footer_nav_wrap {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;

}

footer .footer_wrap .footer_nav_wrap nav {
    position: relative;
}

footer .footer_wrap .footer_nav_wrap nav .mainMenu {
    display: flex;
}

footer .footer_wrap .footer_nav_wrap nav .mainMenu li a {
    color: #fff;
    font-weight: 600;
    margin-right: 30px;
}

footer .footer_wrap .footer_nav_wrap nav .subMenu {
    margin-top: 25px;
    position: absolute;
    left: 90px;
}
footer .footer_wrap .footer_nav_wrap nav .subMenu li {

}

footer .footer_wrap .footer_nav_wrap nav .subMenu li a {
    color: #fff;
    font-weight: 400;
}

.footer_banners {
  display: flex;
  width: 400px;
  height: 200px;
  gap: 10px;
}

.left_banners,
.right_banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left_banners {
  flex: 1; /* 左側を広く（約2/3） */
  gap: 10px;
}

.right_banner {
  flex: 1; /* 右側を少し小さめ（約1/3） */
}

.footer_banners img {
  width: 100%;
  height: auto;
  max-height: 95px; /* 200pxの中で2個並ぶように調整 */
  object-fit: contain;
  display: block;
}

@media only screen and (max-width: 750px){
footer {
    padding-top: 40px;
    padding-bottom: 60px;
}

footer .footer_wrap {
    max-width: 95%;
    margin: 0 auto;
}

footer .footer_wrap h1 {
    margin-bottom: 20px;
}

footer .footer_wrap .footer_nav_wrap {
    margin-top: 40px;
    display: block;
}

footer .footer_wrap .footer_nav_wrap nav .mainMenu {
    display: block;
    margin-bottom: 30px;
}

footer .footer_wrap .footer_nav_wrap nav .mainMenu li {
    margin-bottom: 15px;
}

.footer_banners {
    display: block;
    width: 200px;
    height: fit-content;
    gap: 10px;
}

.left_banners,
 .right_banner {
    display: flex;

    justify-content: space-between;
}

.left_banners li,
 .right_banner li {
    margin-bottom: 10px;
}

.footer_banners ul li a{
    text-align: left;
}
}

















