/* --------------------------------------
  Default Styling
-------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #3a4454;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h1, h2 {
  font-family: "Piazzolla", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.4;
}

h2, h3 {
  margin-top: 0;
  font-weight: 700;
}

h1 {
  margin-top: 0;
  font-weight: 500;
}

h2 {
  text-align: center;
}

h4 {
    font-size:22px;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
    font-size: 22px;
}

p {
  line-height: 1.8;
  font-size: 22px;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a, input, textarea {
  transition: all 0.15s ease-in-out;
}

input[type="submit"]:hover {
  cursor: pointer;
}

/* --------------------------------------
  Reusable Classes
-------------------------------------- */

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  color: #FFF7F7;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;

}

.button-primary {
  background-color: #53687E;
  
    
}

.button-secondary {
  background: #1A4472;
}

.button-primary:hover,
.button-primary:focus {
  background-color: #495B6F;
    
}

.button-secondary:hover,
.button-secondary:focus {
  background: #00AEEF;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
}

.social-links li + li {
  margin-left: 20px;
}

/* --------------------------------------
  Header
-------------------------------------- */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 2;
    
  width: 100%;
  background-color: #1A4472;
  color: #FFF7F7;
  font-family: "Piazzolla", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  font-size: 23px;
}
@media (min-width: 800px){
.header-logo {
  display: flex;
  align-items: center;
}
}

.header-nav-menu {
  
  display: flex;
      @media (max-width: 800px){display:flex;
  display: grid;
  width: fit-content;
  column-gap: 1em;
  text-align:center;
  height:70px;
  grid-template-columns: repeat(3, auto);
  
  
   
    
    }

    @media (max-width: 310px){display:flex;
  display: grid;
  width: fit-content;
  column-gap: 1em;
  
  height:75px;
        grid-template-columns: repeat(2, auto);}
    
}

.header-nav-menu-item > a {
  color: #FFF7F7;
  
  
    
}



.header-nav-menu-item > a:hover,
.header-nav-menu-item > a:focus {
  color: #FFC4C4;
}

/* --------------------------------------
  Main - Hero
-------------------------------------- */

.main-hero {
  background-color: #00AEEF;
}

.main-hero-highlight,
.main-hero-highlight-links a {
  color: #FFF7F7;
}

.main-hero-highlight-links p {
  font-size: 1.2rem;
}

.main-hero-highlight-links p > a {
  text-decoration: underline;
}

.main-hero-highlight-links a:hover,
.main-hero-highlight-links a:focus {
  color: #FFC4C4;
}

/* --------------------------------------
  Main - Works
-------------------------------------- */

.main-works {
  background-color: #FFF7F7;
}

.main-works-item:last-child {
  margin-bottom: 0;
}

.main-works-item-img img {
  border-radius: 5px;
}

.main-works-item-img.primary img {
  box-shadow:
    1px 1px 10px rgba(0, 0, 0, 15%),
    10px 10px 0 #53687E;
}

.main-works-item-img.secondary img {
  box-shadow:
    1px 1px 10px rgba(0, 0, 0, 15%),
    10px 10px 0 #1A4472;
}

/* --------------------------------------
  Main - About
-------------------------------------- */

.main-about {
  background-color: #FFF;
}

.main-about-addition-skills ul {
  padding-left: 20px;
  list-style: disc;
}

.main-about-addition-follow a {
  color: #C2B2B4;
}

.main-about-addition-follow a:hover,
.main-about-addition-follow a:focus {
  color: #AB9698;
}

/* --------------------------------------
  Footer
-------------------------------------- */

.footer {
  background-color: #3A4454;
  color: #FFF7F7;
}

.footer-form form,
.footer-form-input,
.footer-form-textarea {
  width: 100%;
}

.footer-form-input {
  position: relative;
}

.footer-form-input i {
  position: absolute;
  top: 12px;
  left: 16px;
  color: #fff7f7;
}

.footer-form-input input {
  padding: 10px 15px 10px 40px;
}

.footer-form-textarea textarea {
  height: 150px;
  padding: 10px 15px;
  resize: none;
}

.footer-form-input input,
.footer-form-textarea textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #C2B2B4;
  border-radius: 5px;
  color: #FFF7F7;
}

.footer-form-input input::placeholder,
.footer-form-textarea textarea::placeholder {
  color: #9C9DA5;
}

.footer-form-input input:hover,
.footer-form-input input:focus,
.footer-form-textarea textarea:hover,
.footer-form-textarea textarea:focus {
  background-color: rgba(0, 0, 0, 10%);
}

.footer-form-input input:focus-visible,
.footer-form-textarea textarea:focus-visible {
  outline: 1px solid #C2B2B4;
  border: 1px solid #C2B2B4;
}

.footer-info-nav-menu ul {
  font-family: "Piazzolla", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.footer-info-nav-menu a {
  color: #FFF7F7;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-info-nav-menu a:hover,
.footer-info-nav-menu a:focus {
  color: #9C9DA5;
}

.footer-info-follow a {
  color: #9D9DA5;
  font-size: 1.5rem;
}

.footer-info-follow a:hover,
.footer-info-follow a:focus {
  color: #81838D;
}

.footer-info-copy {
  color:  #495B6F;
}

/* --------------------------------------
  Page - Work
-------------------------------------- */

.work h1 {
  margin-bottom: 0;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.main-article-container {
  max-width: 750px;
}

.main-article-topic {
  margin-bottom: 60px;
}

.main-article-topic:last-child {
  margin-bottom: 0;
}

.main-article-topic img {
  margin-bottom: 30px;
  border-radius: 5px;
}

/*ta1テーブル*/
.ta1 {
	width: 100%;
	margin: 0 0 20px;
}
.ta1, .ta1 td, .ta1 th {
	/*border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/ */
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 90px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
    padding: 0px 0px
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

.ta1 td {
	width: 360px;	/*幅*/
	font-weight: normal;
 
}

.recruit-item{
    font-size:12px;
    font-weight: bold;
    text-decoration:underline;
    line-height: 28px;
    
    
}

.hoge_button {
   text-align: center;
   margin-top: 20px;
   margin-bottom: 20px;
   
}

.button-primary{
    background-color: blue;
    width: 10em;
    height:em;
    line-height: 3;
    padding: 10px 0;
}


    .box_srcollbar {
        overflow:auto;
        
        height:280px;
        padding:5px;
        border:1px solid #000;
        background-color:#F9F9F9;
        color:#000;
        font-size:12px;
    }

.main-recruit-item-text{
    margin-top: 30px;
   margin-bottom: 30px;
}

