/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "メイリオ", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
    text-align: left;
    -webkit-text-size-adjust: 100%;
    color: #000;
    width: 100%;
    word-break: break-all;
    line-height: 1.5;
    overflow-x: hidden;
}

#content_wrap {
    overflow: hidden;
}

/*clearfix */
.clearfix:after {
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
    min-height: 0px;
}

header {
    background-color: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#top-head {
    width: 100%;
    height: 78px;
    background: #fff;
    opacity: 0.9;
    display: flex;
    position: fixed;
    z-index: 999;
    box-sizing: border-box;
}

#nav_toggle {
    display: none;
}

/*nav style*/
#top-head nav ul {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 10px;
    font-size: 16px;
}

/*nav link style*/
#top-head nav ul li a {
    text-decoration: none;
    padding: 16px;
    color: #404040;
}

#top-head nav ul li a:hover {
    color: #52BDEA;
}

.logo {
    flex-grow: 1;
}

.logo img {
    height: 30px;
    /* ロゴのサイズ調整 */

}

.menu-btn {
    /* display: flex; */
    /* padding-right: 20px; */
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s
}

.btn:hover {
    opacity: 0.8;

}

.blue {
    background-color: #52BDEA;
    /* 青色のボタン */
    color: #fff;
}

.orange {
    background-color: #FF9200;
    /* オレンジ色のボタン */
    color: #fff;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list>a {}

.footerwrap01 {
    padding-bottom: 60px;
    padding-top: 60px;
    background-color: #2D2D2D;
    color: #FFFFFF;
    margin-top: 100px;
}
.copy {
	font-size: 12px;
	text-align: center;
	/* font-weight: bold; */
}
.topmain {
    width: 100%;
    margin-top: 78px;
    text-align: center;
    max-height: 650px;
    background-image: url('../img/common/mainvisual.png');
    /* 背景画像を設定 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-content {
    width: 70%;
    margin: 0 auto;
    padding: 30px 20px;
}

.topmain .title-content {
    width: 264px;
    padding: 5px 10px;
    margin: 0 auto;
    text-align: center;
    background-color: #565656;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

.topmain .title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.topmain .subtitle {
    font-size: 32px;
    font-weight: 500;
    color: #565656;
    margin-bottom: 20px;
}

.topmain .logo-content {
    background-color: #fff;
    opacity: 0.8;
    border-radius: 5px;
    padding: 18px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.topmain .logo {
    width: 100%;
}

.topmain .content {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.topmain .description {
    font-size: 18px;
}

.topmain .btn {
    font-size: 20px;
    padding: 10px 25px;
    /* border: none; */
    border-radius: 35px;
    cursor: pointer;
}
.section{
    width: 95%;
    margin: 24px;
    padding: 22px;
}
.section-blue{
    background-color: #52BDEA;
    color: #f0f0f0;
}
.section-blue2{
    background-color: #F2FDFF;
}
.section-yellow{
    background-image: url(../img/common/background.png);
}
.section-heading{
    font-size: 32px;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.section-content01{
    display: flex;
}
.section-content01 .content-img {
    width: 33.33%; /* 画像の幅を全体の1/3に設定 */
    text-align: right;
  }
  .section-content01 .content-img img {
    width: 65%; /* 画像の幅を全体の1/3に設定 */
  }
.section-content01 .content {
    width: 66.67%; /* コンテンツの幅を全体の2/3に設定 */
    padding: 20px;
    margin: auto;
  }
.section-content01 .content p {
  letter-spacing: 0.1em; /* 文字間を0.1em広げる */
}
.section-content02 {
    /* text-align: center; */
    width: 60%;
    margin: auto;
    padding: 0 30px;
}

.section-content02 ul {
    list-style: none;
    /* リストのマーカーを非表示 */
    padding: 0;
    /* リストのマージンを削除 */
    display: flex;
    flex-direction: column;
    /* 縦方向に並べる */
    justify-content: flex-start;
    /* 子要素を左揃え */
}

.section-content02 li {
    margin: 10px 0;
    /* 各リスト項目に上下のマージン */
    font-size: 18px;
}

.section-content03 {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* 子要素がコンテナからはみ出したときに折り返す */
    justify-content: space-between;
    /* 子要素を左右に均等に配置 */
}

.section-content03 .content03-box {
    width: 32%;
    /* PC版で3つのボックスが横並びになるように幅を指定 */
    margin-bottom: 20px;
    /* ボックス間の余白 */
    text-align: center;
}

.section-content03 .content03-box img {
    width: 70%;
}

.section-content03 .content03-box h3 {
    font-size: 24px;
    line-height: 28px;
    padding: 10px;
}

.section-content03 .content03-box .section-lead {
    font-size: 14px;
    line-height: 20px;
    margin: 0 14px;
    padding: 10px;
}

.section-content03x {
    display: flex;
    text-align: center;
}

.section-content03x .section-content {
    width: 70%;
    margin: 0 auto;
}

.section-content03x .section-content img {
    width: 100%;
}

.section-content03x .section-content .section-lead {
    margin: 20px 34px;
    font-size: 12px;
    text-align: left;
    line-height: 1.8;
}

.section-content-contact {
    display: block;
    text-align: center;

}

.section-content-contact .btn {
    font-size: 20px;
    padding: 10px 25px;
    /* border: none; */
    border-radius: 35px;
    cursor: pointer;
    margin: 1rem;
}

.section-content05 {
    display: block;
    text-align: center;
}

.content05-box {
    margin: 0 auto;
    width: 756px;
    display: flex;
    align-items: center;
}

.content05-box .content-heading {
    display: flex;
    align-items: baseline;
}

.content05-box .content-heading h2 {
    color: #E8D575;
    font-size: 62px;
}
.content05-box .content-heading h3 {
    /* color: #E8D575; */
    font-size: 28px;
    margin-left: 10px;
}

.content05-box .content-lead {
    display: flex;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.1em; /* 文字間を0.1em広げる */
}
.content05-box img{
    width: 36%;
}

.section-content06 {
    display: flex;
  justify-content: center;
  align-items: center;
}

.section-content06 .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.section-content06 .item {
    width: 30%;
    /* PCで3つ並べる際の幅 */
    text-align: center;
    margin: 10px;
    padding: 20px;
    /* border: 1.2px solid #565656; */
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.3);
}

.section-content06 .eyecatch {
    width: 100%;
}

.section-content06 h3 {
    margin-top: 1rem;
}

.section-content06 p {
    margin-top: 1rem;
    font-size: 14px;
}
.section-content07 .section-content-message{
    width: 70%;
    text-align: left;
    margin: 0 auto;
    padding: 10px;
    padding-bottom: 20px;
    font-size: 14px;
}
.section-content07 .section-content-box{
    text-align: center;
    margin: 10px;
}
.section-content07 .section-content-box img{
    width: 70%;

}

/* スマートフォン */
@media (max-width: 767px) {
    /* スマートフォン用のスタイル */

    /*hamburger menu style*/
    #nav_toggle {
        display: block;
        width: 30px;
        height: 30px;
        position: relative;
        top: 4px;
        z-index: 100;
    }

    #nav_toggle div {
        position: relative;
    }

    /*hamburger menu close style*/
    #nav_toggle span {
        display: block;
        height: 2px;
        background: #404040;
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 10px;
    }

    #nav_toggle span:nth-child(3) {
        top: 20px;
    }

    /*hamburger menu open style*/
    .open #nav_toggle span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nav {
        display: none;
    }

    .menu-btn {
        display: none;
    }

    /*nav style*/
    #top-head nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 1040px;
        background: #fff;
        z-index: 999;
    }

    #top-head nav ul {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    #top-head nav ul li {
        text-align: center;
        border-bottom: 1px solid #dcdcdc;
    }

    #top-head nav ul li:last-child {
        border: none;
    }

    /*nav link style*/
    #top-head nav ul li a {
        display: block;
    }

    .section-content03 .content03-box {
        width: 100%;
        /* 幅を100%にして、縦並びにする */
    }

    .section-content06 .container {
        flex-direction: column;
    }

    .section-content06 .item {
        width: 100%;
    }


}