body {
    color: #082b48;
    line-height: 1.5;
    height: 234px;
}

img {
    width: 100%;
    height: auto;
}

a {
    color: #082b48;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 90%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.section-wrapper {
    padding: 0.1px 0;
}


/* header */

header {
    height: 180px;
}

/* .header-line {
    height: 10px;
    background-color: darkgreen;
} */
.header-all {
    /* display: flex; */
    position: fixed;
}

/* .header-left {
    display: flex;
} */

.header-logo {
    width: 120px;
    height: 120px;
    margin: 35px 30px 15px 15px;
    /* padding: 10px 10px 10px 0px; */
    display: inline-block;
}


.header-logo2 {
    font-size: 82px;
    font-weight: 800;
    vertical-align: top;
    margin-top: 32px;
    display: inline-block;
}

/* ハンバーガーなしのメニュー */

/* .header-right {
    display: flex;
    margin-left: auto;
}

.header-nav {
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    line-height: 96px;
    font-weight: 600;
} */

/* ハンバーガーメニュー */

.header {
  position: relative;
  padding: 20px;
}

.hamburger {
  position: fixed;
  top: 57px;
  right: 20px;
  z-index: 100;
  width:   58px;
  height: 58px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 36px;
  height: 2px;
  background-color: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 11px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 35px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(100%);
  transition: transform .4s;
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.header-nav-item {
    margin-left: 20px;
}

.clear {
    content: "";
    clear: both;
    display: block;
}

/* top */
.top {
    background-image: url(../image/20251129AdobeStock_450626737.jpeg);
    background-size: cover;
    background-position: center;
    height: 760px;
}


/* .top-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: whitesmoke;
    padding: 20px;
    margin-bottom: 40px;
} */

.text_01 {
    font-size: 40px;
    color: #fff;
    text-shadow: 1px 1px 1px #c9c5c5;
}




.top-subtitle {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    color: whitesmoke;
    padding-bottom: 40px;
}

.section-title {
    padding: 1rem 2rem;
    border-top: 3px dotted #000;
    border-bottom: 3px dotted #000;
}

/* アニメーション */
.section-title {
  /*追加*/
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}


/* contents */
.contents {
    display: flex;
    justify-content: space-between;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 80px;
}



.contents-item {
    width: 300px;
    line-height: 1.8;
}

.price {
    padding: 15px;
}

.contents-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
}

.about-item1 {
    height: 230px;
    width: 290px;
}

.about-item2 {
    height: 230px;
    width: 290px;
}

.about-item3 {
    height: 230px;
    width: 290px;
}



/* greet */
.greet-wrapper {
    display: flex;
    /* flex-direction: row; */
    align-items: flex-start;
    height: 500px;
}

.greet-right {
    text-align: center;
    margin-left: auto;
}

.greet-img {
    width: 400px;
}

.greet-text {
    height: 150px;
    line-height: 2;
    margin-bottom: 50px;
    margin-top: 50px;
}

.instagram-icon {
    height: 80px;
    width: 80px;
}

.twitter-icon {
    height: 80px;
    width: 80px;
    margin-left: 30px;
}



/* contact */

.access-wrapper {
    display: flex;
    justify-content: space-around;
    padding-bottom: 30px;
}

.access-item-right {
    font-size: 25px;
    line-height: 2;
}

.contact-map {
    width: 300px;
    height: 300px;
}

/* footer */
.footer {
    background-color: darkgreen;
}

.copyright {
    padding: 20px 0;
    margin-right: 10px;
    text-align: center;
    color: aliceblue;
}

/* スマホ用のCSS */

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


    .section-title {
        margin: 80px 0;
    }

    /* header */

    header {
        height: 130px;
    }

    
    .header-logo{
        width: 60px;
        height:60px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .header-logo2 {
        font-size: 48px;
        margin-top: 30px;
    }

    .hamburger {
        top: 40px;
        right: 10px;
    }



    .header-nav-item {
        margin: 0 10px;
        line-height: 1.3;
    }

    /* contents */

    .top {
        height: 580px;
    }

    .contents {
        flex-direction: column;
        align-items: center;
    }

    .contents-item {
        text-align: center;
        margin-bottom: 40px;
    }

    /* greet */
    .greet-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .greet-text {
        height: auto;
        padding: 20px 0;
    }

    .greet-img {
        width: 100%;
    }


    /* contact */

    .access-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .address {
        margin-top: 20px;
    }

    /* footer */

    .copyright {
        font-size: smaller;
    }
}