@charset "UTF-8";
:root {
  /*""color""*/
  --base-color: #ffffff;
  --main-color: #e2e2e2;
  --contrast-color: #1b1b1b;
  --accent-color: #26a69a;
  --phonto-black-color: #1b1b1b;
  --phonto-white-color: #cccccc;
  /*""phontosize""*/
  --normal-size: 16px;
  --important-size: 20px;
  --title-size: 28px;
  --main-title-size: 36px;
  --fade-in-title-size: 96px;
  --viewWidth: 100vw;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-flow: column;
  font-family: "Meiryo UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  color: var(--phonto-black-color);
  width: var(--viewWidth);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

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

span {
  display: inline-block;
}

/*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
                          nav
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/
a {
  text-decoration: none;
  transition: 0.3s;
}

.navburger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4em;
  background: #2d303a;
  top: 0;
  left: 0;
  right: 0;
}

.logotype {
  font-family: sans-serif;
  font-size: 36px;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 48em) {
  nav nav {
    display: inline;
  }
}

.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
@media screen and (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 15em;
    margin: -600px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: #2d303a;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
  }
}

.red {
  color: #f06c64;
}

.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 48em) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
  .menu__item:hover {
    background-color: #4f5464;
  }
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}

.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}

.container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 8fr 1fr;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "title title title" ". sum ." ". introduction_1 ." ". features_1 ." ". cost_1 ." ". contact_1 ." ". introduction_2 ." ". features_2 ." ". cost_2 ." ". contact_2 .";
}
.container p {
  font-size: clamp(20px, 1vw, 32px);
  line-height: 1;
}

.title {
  grid-area: title;
  display: grid;
  place-items: center;
  background-color: #cccccc;
  padding: 24px;
  text-align: center;
}
.title h1 {
  font-size: clamp(32px, 6vw, 80px);
  padding: 8px;
}
.title p {
  font-size: clamp(28px, 3vw, 40px);
  padding-bottom: 16px;
}

.sum {
  grid-area: sum;
  display: grid;
  place-items: center;
  margin-top: 40px;
  text-align: center;
}
.sum h2 {
  font-size: clamp(32px, 2vw, 64px);
  -webkit-text-decoration: underline solid 2px;
          text-decoration: underline solid 2px;
  margin-bottom: 16px;
}
.sum .explanation {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas: "first triangle_1 secound triangle_2 third";
  margin: 32px;
}
@media screen and (max-width: 998px) {
  .sum .explanation {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-areas: "first" "triangle_1" "secound" "triangle_2" "third";
  }
}
.sum .explanation h3 {
  font-size: clamp(28px, 2vw, 32px);
  font-weight: bold;
  margin: 4px;
}
.sum .explanation p {
  line-height: 1.1;
}
.sum .explanation .first,
.sum .explanation .secound,
.sum .explanation .third {
  display: grid;
  place-items: center;
  grid-template-rows: subgrid;
  grid-row: span 3;
  margin: 24px;
}
.sum .explanation .first img,
.sum .explanation .secound img,
.sum .explanation .third img {
  width: 50vw;
  max-width: 100%;
}
.sum .explanation .triangle_1,
.sum .explanation .triangle_2 {
  height: 60px;
  width: auto;
  aspect-ratio: 0.8660254038;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #cccccc;
  margin: auto auto;
}
@media screen and (max-width: 998px) {
  .sum .explanation .triangle_1,
  .sum .explanation .triangle_2 {
    height: auto;
    width: 60px;
    aspect-ratio: 1/0.8660254038;
    -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
            clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: #cccccc;
    margin: auto;
  }
}
.sum .plan {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 820px) {
  .sum .plan {
    flex-direction: column;
    align-items: center;
  }
}
.sum .plan .sightseeing,
.sum .plan .saving {
  width: 40%;
  border: solid 2px;
}
@media screen and (max-width: 820px) {
  .sum .plan .sightseeing,
  .sum .plan .saving {
    width: 100%;
    margin: 8px;
  }
}
.sum .plan .sightseeing h3,
.sum .plan .saving h3 {
  font-weight: bold;
  font-size: clamp(32px, 2vw, 40px);
  padding: 16px 0;
}
.sum .plan .sightseeing p,
.sum .plan .saving p {
  font-size: clamp(24px, 1vw, 32px);
  padding: 0 8px;
  padding-bottom: 8px;
}

.introduction_1 {
  grid-area: introduction_1;
}
.introduction_1 h1 {
  font-size: clamp(32px, 3vw, 64px);
  margin-top: 32px;
}

.features_1 {
  grid-area: features_1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.features_1 h3 {
  font-size: clamp(32px, 3vw, 48px);
  margin-top: 16px;
}
.features_1 .feature_1_1, .features_1 .features_1_2 {
  display: flex;
  justify-content: space-around;
  max-width: 80%;
  margin: 8px;
}
@media screen and (max-width: 820px) {
  .features_1 .feature_1_1, .features_1 .features_1_2 {
    flex-direction: column;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.features_1 .deep_feature {
  display: flex;
  flex-direction: row;
  width: 45%;
  border: 2px dashed;
  border-radius: 5%;
  padding: 16px;
  flex-grow: 1;
  margin: 8px;
}
@media screen and (max-width: 1540px) {
  .features_1 .deep_feature {
    flex-wrap: wrap;
  }
}
.features_1 .deep_feature .feature_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.features_1 .deep_feature h4 {
  font-size: clamp(28px, 2vw, 32px);
  text-decoration: underline;
  margin-bottom: 8px;
}
.features_1 .deep_feature p {
  margin: 8px;
}
.features_1 .deep_feature img {
  margin: auto;
  max-width: 100%;
}

.cost_1 {
  grid-area: cost_1;
}

.contact_1 {
  grid-area: contact_1;
}

.introduction_2 {
  grid-area: introduction_2;
}

.features_2 {
  grid-area: features_2;
}

.cost_2 {
  grid-area: cost_2;
}

.contact_2 {
  grid-area: contact_2;
}

/*""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
                                                        footer
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/
.footer {
  padding: 2rem;
  font-size: var(--normal-size);
  color: #dbdada;
  background: #2d303a;
  margin-top: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a {
  color: #999;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.flex {
  display: flex;
}

.footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .md-flex {
    display: flex;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .copyright {
    display: inline-block;
    margin-right: auto;
  }
}
@media screen and (min-width: 800px) and (max-width: 801px) {
  .copyright {
    margin: 100px;
  }
}
.icon {
  width: 20px;
  height: 20px;
}

.link-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 801px) {
  .link-flex {
    flex-direction: column;
  }
}

.link-tab {
  margin-left: 12px;
}
@media screen and (max-width: 801px) {
  .link-tab {
    margin-top: 8px;
  }
}/*# sourceMappingURL=service.css.map */